online perceptron algorithm
#machine_learning
Consider the perceptron, then the GD update becomes
and SGD update is based on a single misclassified data point,
The SGD update gives rise to an online perceptron algorithm:
- intialize (at random, close to )
- while not converged (no update (practically, within tolerance bound) is made to during one epoch or maximum iterations reached) do
- pick up at random
- if
References
- Anna Choromanska. ECE-GY 7143 course slides, lecture 2.